mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 03:09:31 +08:00
8 lines
337 B
Text
8 lines
337 B
Text
export declare const pointerToDotNotation: (pointer: string) => string;
|
|
export declare const cleanAjvMessage: (message: string) => string;
|
|
export declare const getLastSegment: (path: string) => string;
|
|
export declare const safeJsonPointer: <T>({ object, pnter, fallback }: {
|
|
object: any;
|
|
pnter: string;
|
|
fallback: T;
|
|
}) => T;
|