mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:29:30 +08:00
18 lines
No EOL
536 B
Text
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 |