mirror of
https://github.com/gristlabs/grist-core.git
synced 2025-12-14 23:21:55 +00:00
5 lines
113 B
TypeScript
5 lines
113 B
TypeScript
|
|
export interface IShell {
|
||
|
|
moveItemToTrash(docPath: string): void;
|
||
|
|
showItemInFolder(docPath: string): void;
|
||
|
|
}
|