7 lines
245 B
TypeScript
Raw Normal View History

2025-06-30 09:38:03 +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[]>;