MCPcopy Create free account
hub / github.com/angular/components / position

Method position

src/material/sidenav/drawer.ts:215–217  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

213 /** The side that the drawer is attached to. */
214 @Input()
215 get position(): 'start' | 'end' {
216 return this._position;
217 }
218 set position(value: 'start' | 'end') {
219 // Make sure we have a valid value.
220 value = value === 'end' ? 'end' : 'start';

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected