mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-29 06:15:24 -04:00
🏷️ typing
This commit is contained in:
parent
8bcd42f586
commit
2ae0f8ea65
1 changed files with 7 additions and 3 deletions
|
@ -19,11 +19,15 @@ type AnimatedClip = {
|
||||||
};
|
};
|
||||||
|
|
||||||
interface Config {
|
interface Config {
|
||||||
staticSvgs: Array<string>;
|
staticSvgs: Array<string> | undefined;
|
||||||
bitmapsDir: string;
|
bitmapsDir: string;
|
||||||
svgsDir: string;
|
svgsDir: string;
|
||||||
animatedCursors: AnimatedCursors;
|
animatedCursors: AnimatedCursors | undefined;
|
||||||
animatedClip: AnimatedClip;
|
animatedClip: AnimatedClip;
|
||||||
}
|
}
|
||||||
|
|
||||||
export { ColorSchema, Config };
|
interface Configs {
|
||||||
|
[name: string]: Config;
|
||||||
|
}
|
||||||
|
|
||||||
|
export { ColorSchema, Config, Configs };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue