blob: fe56cdb28a571fb8f53bed88e0852c06761e8c1e (
plain)
1
2
3
4
5
6
|
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[]>;
|