A stylesheet language written in TypeScript that compiles to CSS
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }