interface SeedPhraseImportProps {
    expectedCount?: 12 | 24;
    wordlist?: readonly string[];
    onImported: ((words: string[]) => void);
}

Properties

expectedCount?: 12 | 24
wordlist?: readonly string[]
onImported: ((words: string[]) => void)