UNPKG

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