UNPKG

@softwareventures/maintain-project

Version:

Automatically create and maintain TypeScript projects with standard settings for Software Ventures Limited

6 lines (5 loc) 204 B
export interface SpdxToken { readonly type: "AND" | "OR" | "WITH" | "(" | ")" | "+" | "identifier"; readonly text: string; } export declare function scanSpdxExpression(text: string): SpdxToken[];