ohctechv3/.svn/pristine/62/6281bdb4be8ee25cadb49e65841b4acb2235ed9f.svn-base

7 lines
280 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
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;