10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
|
export interface IconAlias {
|
||
|
[key: string]: string[];
|
||
|
}
|
||
|
export interface IconShapeSources {
|
||
|
[key: string]: string;
|
||
|
}
|
||
|
export interface ShapeTemplateObservables {
|
||
|
[key: string]: ((arg0: string) => void)[];
|
||
|
}
|