Urara-Blog/node_modules/.pnpm-store/v3/files/df/cdecdafcb3c48315f9a76fc21449140cdf08f74254aaa952be2d269fbf9baf7e1b11f58c4cb495a4d27a465850f9cf638c80529879f353fddca7d565ff5ba4
2022-08-14 01:14:53 +08:00

18 lines
No EOL
536 B
Text

import { VariableBase } from './VariableBase';
/**
* A Variable represents a locally scoped identifier. These include arguments to functions.
*/
declare class Variable extends VariableBase {
/**
* `true` if the variable is valid in a type context, false otherwise
* @public
*/
get isTypeVariable(): boolean;
/**
* `true` if the variable is valid in a value context, false otherwise
* @public
*/
get isValueVariable(): boolean;
}
export { Variable };
//# sourceMappingURL=Variable.d.ts.map