Files
memecoin-botV2/.pnpm-store/v10/files/77/f7a93a74ed8b427e6693cc3816a1a4f4386757486327f8f4b21cb1a42d9b31fa31fcf6e5ef5b7ecad9584d1296169d42b5c1cf6a416279f15dd795f4d00954

17 lines
484 B
Plaintext

import { VariableBase } from './VariableBase';
/**
* A Variable represents a locally scoped identifier. These include arguments to functions.
*/
export 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;
}