@funded-labs/plug-controller
Version:
Internet Computer Plug wallet's controller
13 lines (12 loc) • 344 B
TypeScript
import type { Principal } from '@dfinity/principal';
export interface ICNSReverseRegistrar {
'getName': (arg_0: Principal) => Promise<string>;
'setName': (arg_0: string) => Promise<Result>;
}
export declare type Result = {
'ok': string;
} | {
'err': string;
};
export default interface _SERVICE extends ICNSReverseRegistrar {
}