mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
6 lines
134 B
TypeScript
6 lines
134 B
TypeScript
import { Result } from '../Core/Result'
|
|
|
|
export interface DomainUseCaseInterface<T> {
|
|
execute(...args: any[]): Promise<Result<T>>
|
|
}
|