@connected/client
Version:
The hassle free way to call your server-side code
14 lines • 438 B
TypeScript
export type SerializableValue = null | string | number | boolean | Date | {
[key: string]: SerializableValue;
} | SerializableValue[];
export type NextFunction = (error?: unknown) => void;
export type Request = {
name: string;
group?: string;
parameters: SerializableValue[];
constructorParameters?: SerializableValue[];
};
export type Response = {
result: SerializableValue;
};
//# sourceMappingURL=types.d.ts.map