UNPKG

@snap/camera-kit

Version:
27 lines 1.34 kB
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { Asset_AssetType } from "../../content/asset"; import { MediaSource } from "../../content/media_source"; export declare const protobufPackage = "snapchat.cdp.cof"; export interface MdpMediaAttribution { mediaSource: MediaSource; assetType: Asset_AssetType; } export declare const MdpMediaAttribution: MessageFns<MdpMediaAttribution>; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]>; } : Partial<T>; type KeysOfUnion<T> = T extends T ? keyof T : never; export type Exact<P, I extends P> = P extends Builtin ? P : P & { [K in keyof P]: Exact<P[K], I[K]>; } & { [K in Exclude<keyof I, KeysOfUnion<P>>]: never; }; export interface MessageFns<T> { encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; create<I extends Exact<DeepPartial<T>, I>>(base?: I): T; fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T; } export {}; //# sourceMappingURL=mdp_media_attribution.d.ts.map