11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import type { AnySignature } from './AnySignature';
|
|
import type { AnyVerifyingKey } from './AnyVerifyingKey';
|
|
export type RegistryAsset<Commitment> = {
|
|
publishedAt: string;
|
|
urls: string[];
|
|
commitment: Commitment;
|
|
signatures: {
|
|
[key: AnyVerifyingKey]: AnySignature;
|
|
};
|
|
};
|