Files

7 lines
245 B
TypeScript
Raw Permalink Normal View History

2026-05-31 18:44:04 +08:00
export declare class Identity {
name: string;
hash?: string | undefined;
constructor(name: string, hash?: string | undefined);
}
export declare function findIdentities(keychain: string | null, identity: string): Promise<Identity[]>;