mirror of
https://github.com/colanode/colanode.git
synced 2025-12-16 11:47:47 +01:00
15 lines
296 B
TypeScript
15 lines
296 B
TypeScript
import { ServerDetails } from '@colanode/client/types/servers';
|
|
|
|
export type ServerListQueryInput = {
|
|
type: 'server.list';
|
|
};
|
|
|
|
declare module '@colanode/client/queries' {
|
|
interface QueryMap {
|
|
'server.list': {
|
|
input: ServerListQueryInput;
|
|
output: ServerDetails[];
|
|
};
|
|
}
|
|
}
|