@3id/manager
Version:
14 lines (13 loc) • 324 B
TypeScript
export declare type ExcludesBoolean = <T>(x: T | null) => x is T;
export declare type AuthConfig = {
authId: string;
authSecret: Uint8Array;
};
export declare type SeedConfig = {
v03ID?: string;
seed: Uint8Array;
did?: string;
};
export declare type LinksArray = {
links: Array<any>;
};