UNPKG

@alihbuzaid/ember-ui

Version:

Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.

9 lines (8 loc) 276 B
export default function arg(target, key, descriptor) { return { get() { const argValue = this.args[key]; return argValue !== undefined ? argValue : descriptor.initializer ? descriptor.initializer.call(this) : undefined; }, }; }