An interface for a scope.

interface IScope {
    name: string;
    variables: IVariable[];
}

Properties

Properties

name: string

The name of the scope.

variables: IVariable[]

The list of variables.