File

libs/sensorml/src/lib/model/sml/AbstractSetting.ts

Index

Properties
Methods

Properties

ref
Type : string
Decorators :
@DisplayName('Ref')
value
Type : any
Decorators :
@DisplayName('Value')

Methods

toString
toString()
Returns : string
import { DisplayName } from '../../common/decorators/DisplayName';

export abstract class AbstractSetting {
    @DisplayName('Value')
    value: any;

    @DisplayName('Ref')
    ref: string;

    toString() {
        return 'Abstract setting';
    }
}

result-matching ""

    No results matching ""