ohctechv3/.svn/pristine/62/6281bdb4be8ee25cadb49e65841b4acb2235ed9f.svn-base
2024-10-28 15:03:36 +05:30

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;