Interface IGLBEncryptionPreparser

interface IGLBEncryptionPreparser {
    key:
        | string
        | (encryption: any, json: any, path: string) => string | Promise<string>;
    process(
        data: string | ArrayBuffer,
        path: string,
    ): Promise<string | ArrayBuffer>;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Methods

Properties

key:
    | string
    | (encryption: any, json: any, path: string) => string | Promise<string>

Methods