persona-community-5/.pnpm-store/v3/files/2a/5d8eea7198d2d737c02785f3cc838b344c6ed7edc40546ff60d4fb9bd8b498afc507506064503073114207ca09b71493318eb7771b8087bf35eaf7a6d93d8a
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

28 lines
1.2 KiB
Plaintext

import type { Source } from './resolve';
import type { OasRef } from './typings/openapi';
export declare function joinPointer(base: string, key: string | number): string;
export declare function isRef(node: unknown): node is OasRef;
export declare function isExternalValue(node: unknown): boolean;
export declare class Location {
source: Source;
pointer: string;
constructor(source: Source, pointer: string);
child(components: (string | number)[] | string | number): Location;
key(): this & {
reportOnKey: boolean;
};
get absolutePointer(): string;
}
export declare function unescapePointer(fragment: string): string;
export declare function escapePointer<T extends string | number>(fragment: T): T;
export declare function parseRef(ref: string): {
uri: string | null;
pointer: string[];
};
export declare function parsePointer(pointer: string): string[];
export declare function pointerBaseName(pointer: string): string;
export declare function refBaseName(ref: string): string;
export declare function isAbsoluteUrl(ref: string): boolean;
export declare function isMappingRef(mapping: string): boolean;
export declare function isAnchor(ref: string): boolean;