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