microsoft / vscode-textmate

A library that helps tokenize text using Text Mate grammars.
MIT License
562 stars 108 forks source link

lacks of some type export on latest version #185

Open troy351 opened 1 year ago

troy351 commented 1 year ago
// works in v7.0.1 from types.d.ts
import type { IRawGrammar } from 'vscode-textmate'

// in v7.0.3, no types.d.ts anymore, we should do this
import type { IRawGrammar } from 'vscode-textmate/release/rawGrammar'

Is this behavior intentional for unexpected?