import type { Identity, IMapping, IParser } from './parser'; import * as Token from '../token/index'; export interface String extends IParser { type: 'String'; quotes: Quotes; } export type ParseString = (Token.TString);