13 lines
199 B
TypeScript
13 lines
199 B
TypeScript
|
export interface CreateQueryStoreCommand {
|
||
|
query: string;
|
||
|
}
|
||
|
|
||
|
export interface UpdateQueryStoreCommand {
|
||
|
id: number;
|
||
|
query: string;
|
||
|
}
|
||
|
|
||
|
export interface DeleteQueryStoreCommand {
|
||
|
id: number;
|
||
|
}
|