mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
import { DeriveJunction } from './DeriveJunction.js';
|
|
export interface ExtractResult {
|
|
parts: string[] | null;
|
|
path: DeriveJunction[];
|
|
}
|
|
/**
|
|
* @description Extract derivation junctions from the supplied path
|
|
*/
|
|
export declare function keyExtractPath(derivePath: string): ExtractResult;
|