persona-community-5/.pnpm-store/v3/files/ee/b47ef1c5ba2335c5ff740783315df61b20819faca4be44afdece1c229e74f6a02c55bd993a8695368c7eecefdcaf09b63635542415454003f4d0aafaabc815
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

21 lines
721 B
Plaintext

import type { JSONSchema4 } from '@typescript-eslint/utils/json-schema';
import type * as ts from 'typescript';
interface FileSpecifier {
from: 'file';
name: string[] | string;
path?: string;
}
interface LibSpecifier {
from: 'lib';
name: string[] | string;
}
interface PackageSpecifier {
from: 'package';
name: string[] | string;
package: string;
}
export type TypeOrValueSpecifier = FileSpecifier | LibSpecifier | PackageSpecifier | string;
export declare const typeOrValueSpecifierSchema: JSONSchema4;
export declare function typeMatchesSpecifier(type: ts.Type, specifier: TypeOrValueSpecifier, program: ts.Program): boolean;
export {};
//# sourceMappingURL=TypeOrValueSpecifier.d.ts.map