Sha256: 87427650bdb0d4731b13c9b2cc6d1ef475cb77db76fc1d01a08dc42dabfa801b
Contents?: true
Size: 519 Bytes
Versions: 5
Compression:
Stored size: 519 Bytes
Contents
import { NodeBase } from './shared/Node'; import Literal from './Literal'; import MagicString from 'magic-string'; import { NodeType } from './NodeType'; import { NodeRenderOptions, RenderOptions } from '../../utils/renderHelpers'; export default class ExportAllDeclaration extends NodeBase { type: NodeType.ExportAllDeclaration; source: Literal<string>; isExportDeclaration: true; needsBoundaries: true; render(code: MagicString, _options: RenderOptions, {start, end}?: NodeRenderOptions): void; }
Version data entries
5 entries across 5 versions & 2 rubygems