Skip to content
Snippets Groups Projects
engine.interfaces.ts 110 B
Newer Older
export interface IEngineOptions {
    type: string;
}

export interface IEngineService {
    demo(): string;
}