mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 14:05:12 +00:00
15 lines
392 B
TypeScript
15 lines
392 B
TypeScript
export function hasOnlyChild({ alternatives }: {
|
|
alternatives: any;
|
|
}, kidFn: any): any;
|
|
export function isAlwaysNonZeroLength(node: any): boolean;
|
|
export function isAlwaysZeroLength({ type }: {
|
|
type: any;
|
|
}): boolean;
|
|
export function isConsumptiveGroup({ type }: {
|
|
type: any;
|
|
}): boolean;
|
|
export function isLookaround({ type, kind }: {
|
|
type: any;
|
|
kind: any;
|
|
}): boolean;
|