astro-ghostcms/.pnpm-store/v3/files/df/cdecdafcb3c48315f9a76fc2144...

18 lines
536 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
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