A stylesheet language written in TypeScript that compiles to CSS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

binding.ts 251B

1234567891011
  1. import * as AST from '../ast';
  2. export class Binding {
  3. public identifier: AST.Identifier;
  4. public value: AST.Node;
  5. public constructor(identifier: AST.Identifier, value: AST.Node) {
  6. this.identifier = identifier;
  7. this.value = value;
  8. }
  9. }