Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ArgsWrapper

This is a utility interface that represents all of the args used throughout Ember.

example
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);
}
}

Hierarchy

  • ArgsWrapper

Index

Properties

Properties

named?: Record<string, unknown>
positional?: unknown[]

Generated using TypeDoc