ZV1Comment: ObjectSchema<{
body: StringSchema<string>;
commands: ArraySchema<StringSchema<string>, string[]>;
id: StringSchema<string>;
isMyPost: BooleanSchema<boolean>;
isPremium: BooleanSchema<boolean>;
nicoruCount: NumberSchema<number>;
nicoruId: NullableSchema<StringSchema<string>, undefined, null | string>;
no: NumberSchema<number>;
postedAt: StringSchema<string>;
score: NumberSchema<number>;
source: StringSchema<string>;
userId: StringSchema<string>;
vposMs: NumberSchema<number>;
}, undefined, {
body: string;
commands: string[];
id: string;
isMyPost: boolean;
isPremium: boolean;
nicoruCount: number;
nicoruId: null | string;
no: number;
postedAt: string;
score: number;
source: string;
userId: string;
vposMs: number;
}> = ...
Type declaration
body: StringSchema<string>
commands: ArraySchema<StringSchema<string>, string[]>
id: StringSchema<string>
isMyPost: BooleanSchema<boolean>
isPremium: BooleanSchema<boolean>
nicoruCount: NumberSchema<number>
nicoruId: NullableSchema<StringSchema<string>, undefined, null | string>
no: NumberSchema<number>
postedAt: StringSchema<string>
score: NumberSchema<number>
source: StringSchema<string>
userId: StringSchema<string>
vposMs: NumberSchema<number>
Type declaration
body: string
commands: string[]
id: string
isMyPost: boolean
isPremium: boolean
nicoruCount: number
nicoruId: null | string
no: number
postedAt: string
score: number
source: string
userId: string
vposMs: number