Files
memecoin-botV2/.pnpm-store/v10/files/62/88a52fa39998fe5cfa5d4d29317a8cf5dacc1e15d90900314819df06ad2fb43862f5a5b49710ad74f481518a78d1620744ea767fcfcfb066bcad9b4d76c249

13 lines
709 B
Plaintext

import type { TSESTree } from '@typescript-eslint/utils';
export type ClassNode = TSESTree.ClassDeclaration | TSESTree.ClassExpression;
export type MemberNode = TSESTree.AccessorProperty | TSESTree.MethodDefinition | TSESTree.PropertyDefinition | TSESTree.TSAbstractAccessorProperty | TSESTree.TSAbstractMethodDefinition | TSESTree.TSAbstractPropertyDefinition | TSESTree.TSParameterProperty;
export type PrivateKey = string & {
__brand: 'private-key';
};
export type PublicKey = string & {
__brand: 'public-key';
};
export type Key = PrivateKey | PublicKey;
export declare function publicKey(name: string): PublicKey;
export declare function privateKey(node: TSESTree.PrivateIdentifier): PrivateKey;