8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import type { AnyVerifyingKey } from './AnyVerifyingKey';
|
|
import type { ContactInfo } from './ContactInfo';
|
|
export type SignerInfo = {
|
|
name: string;
|
|
contact: Array<ContactInfo>;
|
|
keys: Array<AnyVerifyingKey>;
|
|
};
|