31 lines
758 B
Markdown
31 lines
758 B
Markdown
|
## API Report File for "@angular/platform-browser_animations"
|
||
|
|
||
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
||
|
|
||
|
```ts
|
||
|
|
||
|
import { InjectionToken } from '@angular/core';
|
||
|
import { ModuleWithProviders } from '@angular/core';
|
||
|
|
||
|
// @public (undocumented)
|
||
|
export const ANIMATION_MODULE_TYPE: InjectionToken<"NoopAnimations" | "BrowserAnimations">;
|
||
|
|
||
|
// @public
|
||
|
export class BrowserAnimationsModule {
|
||
|
static withConfig(config: BrowserAnimationsModuleConfig): ModuleWithProviders<BrowserAnimationsModule>;
|
||
|
}
|
||
|
|
||
|
// @public
|
||
|
export interface BrowserAnimationsModuleConfig {
|
||
|
disableAnimations?: boolean;
|
||
|
}
|
||
|
|
||
|
// @public
|
||
|
export class NoopAnimationsModule {
|
||
|
}
|
||
|
|
||
|
|
||
|
// (No @packageDocumentation comment for this package)
|
||
|
|
||
|
```
|