ZV1Thread: ObjectSchema<{
    commentCount: OptionalSchema<NumberSchema<number>, 0, number>;
    comments: ArraySchema<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;
    }>, {
        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;
    }[]>;
    fork: StringSchema<string>;
    id: UnknownSchema<unknown>;
}, undefined, {
    commentCount: number;
    comments: {
        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;
    }[];
    fork: string;
    id: unknown;
}> = ...

Type declaration

  • commentCount: OptionalSchema<NumberSchema<number>, 0, number>
  • comments: ArraySchema<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;
    }>, {
        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;
    }[]>
  • fork: StringSchema<string>
  • id: UnknownSchema<unknown>

Type declaration

  • commentCount: number
  • comments: {
        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;
    }[]
  • fork: string
  • id: unknown

Generated using TypeDoc