UNPKG

293 BTypeScriptView Raw
1import { DeriveJunction } from './DeriveJunction';
2export interface ExtractResult {
3 parts: null | string[];
4 path: DeriveJunction[];
5}
6/**
7 * @description Extract derivation junctions from the supplied path
8 */
9export declare function keyExtractPath(derivePath: string): ExtractResult;