版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 rivejä
444 B

  1. import { Range } from '../nodes/Node.js';
  2. import { Scalar } from '../nodes/Scalar.js';
  3. import type { FlowScalar } from '../parse/cst.js';
  4. import type { ComposeErrorHandler } from './composer.js';
  5. export declare function resolveFlowScalar(scalar: FlowScalar, strict: boolean, onError: ComposeErrorHandler): {
  6. value: string;
  7. type: Scalar.PLAIN | Scalar.QUOTE_DOUBLE | Scalar.QUOTE_SINGLE | null;
  8. comment: string;
  9. range: Range;
  10. };