blob: 83754b17f89033ca6193c7699072affd8996f5a4 [file] [log] [blame]
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