summaryrefslogtreecommitdiff
path: root/src/buildstream/_variables.pyi
blob: 1e2f473251346bcfe56ec2c57da3ace8cea05ca1 (plain)
1
2
3
4
5
6
7
8
9
from typing import Optional

from .node import MappingNode, Node

class Variables:
    def __init__(self, node: MappingNode) -> None: ...
    def check(self) -> None: ...
    def expand(self, node: Node) -> None: ...
    def get(self, name: str) -> Optional[str]: ...