@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
16 lines (15 loc) • 369 B
TypeScript
import { FC } from 'react';
export interface NewTokenProps {
setNewToken?: (x: any) => void;
module?: any;
setActiveTab?: any;
}
interface CreateTokenForm {
name: string;
symbol: string;
icon: File | null;
decimals: string;
}
export declare const DEFAULT_VALUES: CreateTokenForm;
export declare const NewToken: FC<NewTokenProps>;
export {};