You've already forked MenuGraphr
mirror of
https://github.com/FullScreenShenanigans/MenuGraphr.git
synced 2026-04-28 13:02:13 -07:00
5dd5e5ff49
Doesn't quite compile yet, though it's close. TSLint hasn't happened yet.
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
declare module MenuGraphr {
|
|
export interface IMenuGraphrSettings {
|
|
GameStarter: GameStartr.IGameStartr;
|
|
schemas?: any;
|
|
aliases?: any;
|
|
replacements?: any;
|
|
replacerKey?: string;
|
|
replaceFromItemsHolder?: any;
|
|
replacementStatistics?: any;
|
|
}
|
|
|
|
export interface IMenuGraphr {
|
|
|
|
}
|
|
} |