A stylesheet language written in TypeScript that compiles to CSS
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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