Files
PackControl/node_modules/@electron/osx-sign/dist/esm/util-identities.d.ts
2026-01-15 21:52:12 +01:00

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