Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 390 Bytes

client.appbundlesource.md

File metadata and controls

18 lines (13 loc) · 390 Bytes

Home > @holochain/client > AppBundleSource

AppBundleSource type

Signature:

export type AppBundleSource = {
    type: "path";
    value: string;
} | {
    type: "bytes";
    value: Uint8Array;
};