persona-community-5/.pnpm-store/v3/files/df/cdecdafcb3c48315f9a76fc21449140cdf08f74254aaa952be2d269fbf9baf7e1b11f58c4cb495a4d27a465850f9cf638c80529879f353fddca7d565ff5ba4
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
536 B
Plaintext

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