7 lines
280 B
Plaintext
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;
|