Skip to content
Snippets Groups Projects
Select Git revision
  • d1cbc85ad3f13f2e3b38a2a003591f3ea0f14a1a
  • main default protected
  • 48-replace-mqtt-handling-with-ragconnect
  • dev protected
  • 40-add-mqtt-username-and-password-to-mqttreceiver-java
  • learner
  • Integration_KB_L
  • 0.1
8 results

run-cloc.sh

Blame
  • parameter.ts 223 B
    import {TypeRef} from './type-ref';
    
    export class Parameter {
      type: TypeRef;
      name: string;
    
      static fromJson(json: any): Parameter {
        return {
          type: TypeRef.fromJson(json.t),
          name: json.n,
        };
      }
    }