Files
Remote-Control-Center/mc_test/node_modules/@electron/osx-sign/dist/cjs/util-identities.d.ts
2025-11-25 09:56:15 +03:00

7 lines
245 B
TypeScript
Executable File

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[]>;