astro-ghostcms/.pnpm-store/v3/files/bf/2a9b5def9a7e3c07dedcb03a2f5...

7 lines
280 B
Plaintext

import type TokenProcessor from "../TokenProcessor";
/**
* Starting at `export {`, look ahead and return `true` if this is an
* `export {...} from` statement and `false` if this is a plain multi-export.
*/
export default function isExportFrom(tokens: TokenProcessor): boolean;