Popii - v0.5.1
    Preparing search index...

    Interface PopiiSchema<TInput>

    interface PopiiSchema<TInput = any> {
        parse?: (data: any) => TInput;
        parseAsync?: (data: any) => Promise<TInput>;
    }

    Type Parameters

    • TInput = any
    Index

    Properties

    Properties

    parse?: (data: any) => TInput
    parseAsync?: (data: any) => Promise<TInput>