CodecTest | WebHare Platform SDK
WebHare Platform SDK
    Preparing search index...

    Type Alias CodecTest

    CodecTest:
        | { bits: 16
        | 32
        | 64; integer: true; signed: boolean; type: "number" }
        | { integer: false; type: "number" }
        | { test?: (value: string) => boolean; type: "string" }
        | { type: "boolean" }
        | { test: (value: bigint) => boolean; type: "bigint" }
        | {
            priority: number | null;
            test: (value: object) => boolean;
            type: "object";
        }
        | { type: "json" }
        | { type: "null" }