mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
4 lines
98 B
TypeScript
4 lines
98 B
TypeScript
export interface UseCaseInterface {
|
|
execute(...args: any[]): Promise<Record<string, unknown>>
|
|
}
|