Interface IGLBEncryptionPreparser

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

Hierarchy (view full)

Properties

Methods

Properties

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

Type declaration

    • (encryption, json, path): string | Promise<string>
    • Parameters

      • encryption: any
      • json: any
      • path: string

      Returns string | Promise<string>

Methods

Generated using TypeDoc