gristlabs_grist-core/app/server/lib/IShell.ts

5 lines
116 B
TypeScript
Raw Normal View History

export interface IShell {
trashItem(docPath: string): Promise<void>;
showItemInFolder(docPath: string): void;
}