This is a utility interface that represents all of the args used throughout Ember.
import { Resource } from 'ember-resources';import type { ArgsWrapper } from 'ember-resources';class MyResource extends Resource { // default args type constructor(owner: unknown, args: ArgsWrapper) { super(owner, args); }}
Generated using TypeDoc
This is a utility interface that represents all of the args used throughout Ember.