vending-machine/mobile/node_modules/licia/theme.d.ts
2026-04-03 06:07:13 +08:00

11 lines
188 B
TypeScript

import Emitter = require('./Emitter');
declare namespace theme {
interface ITheme extends Emitter {
get(): string;
}
}
declare const theme: theme.ITheme;
export = theme;