smartscaf/ts/interfaces/smartscaf.ts

8 lines
141 B
TypeScript
Raw Normal View History

2019-10-11 19:56:11 +00:00
export interface ISmartscafFile {
2020-01-31 14:51:05 +00:00
defaults: { [key: string]: string };
2019-10-11 19:56:11 +00:00
dependencies: {
merge: string[];
};
runafter: string[];
2020-01-31 14:51:05 +00:00
}