10 lines
220 B
TypeScript
10 lines
220 B
TypeScript
export interface UpdateDeckCommand {
|
|
id: string;
|
|
name?: string;
|
|
type?: number;
|
|
userid?: string;
|
|
cards?: any[];
|
|
ctype?: number;
|
|
state?: number;
|
|
}
|
|
//# sourceMappingURL=UpdateDeckCommand.d.ts.map
|