Interface VideoEffectAsset

    interface VideoEffectAsset {
        "[dispose]": () => void;
        color?: string;
        dispose: () => void;
        id: string;
        isBuiltIn?: boolean;
        metadata?: Record<string, unknown>;
        name: string;
        ops: EffectOp[];
        raw: EffectDefinition;
        toJSON: () => Schema.VideoEffectAsset;
        type: "asset:effect:video";
    }

    Hierarchy

    Index
    "[dispose]": () => void
    color?: string
    dispose: () => void
    id: string
    isBuiltIn?: boolean
    metadata?: Record<string, unknown>
    name: string
    ops: EffectOp[]
    raw: EffectDefinition
    toJSON: () => Schema.VideoEffectAsset
    type: "asset:effect:video"