UNPKG

@bscotch/stitch

Version:

Stitch: The GameMaker Studio 2 Asset Pipeline Development Kit.

13 lines 567 B
import type { GmlToken } from '../lib/parser/GmlToken.js'; /** * Report from the linter functionality. If a field is **missing** * then its underlying functionality **was not checked**. * (Checked functionality that yieled no errors will return empty arrays.) */ export interface LinterReport { /** Only set if `options.versionSuffix` was provided */ outdatedFunctionReferences?: GmlToken[]; /** Global functions whose references do not appear elsewhere in the project */ nonreferencedFunctions?: GmlToken[]; } //# sourceMappingURL=Linter.d.ts.map