mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-11 00:32:45 +08:00
7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
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[]>;
|