70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
		
		
			
		
	
	
			70 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
|  | ## API Report File for "@angular/platform-server"
 | ||
|  | 
 | ||
|  | > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
 | ||
|  | 
 | ||
|  | ```ts | ||
|  | 
 | ||
|  | import { InjectionToken } from '@angular/core'; | ||
|  | import { NgModuleFactory } from '@angular/core'; | ||
|  | import { PlatformRef } from '@angular/core'; | ||
|  | import { StaticProvider } from '@angular/core'; | ||
|  | import { Type } from '@angular/core'; | ||
|  | import { Version } from '@angular/core'; | ||
|  | 
 | ||
|  | // @public | ||
|  | export const BEFORE_APP_SERIALIZED: InjectionToken<(() => void | Promise<void>)[]>; | ||
|  | 
 | ||
|  | // @public | ||
|  | export const INITIAL_CONFIG: InjectionToken<PlatformConfig>; | ||
|  | 
 | ||
|  | // @public | ||
|  | export interface PlatformConfig { | ||
|  |     baseUrl?: string; | ||
|  |     document?: string; | ||
|  |     url?: string; | ||
|  |     useAbsoluteUrl?: boolean; | ||
|  | } | ||
|  | 
 | ||
|  | // @public | ||
|  | export const platformDynamicServer: (extraProviders?: StaticProvider[] | undefined) => PlatformRef; | ||
|  | 
 | ||
|  | // @public (undocumented) | ||
|  | export const platformServer: (extraProviders?: StaticProvider[] | undefined) => PlatformRef; | ||
|  | 
 | ||
|  | // @public | ||
|  | export class PlatformState { | ||
|  |     constructor(_doc: any); | ||
|  |     getDocument(): any; | ||
|  |     renderToString(): string; | ||
|  | } | ||
|  | 
 | ||
|  | // @public | ||
|  | export function renderModule<T>(module: Type<T>, options: { | ||
|  |     document?: string; | ||
|  |     url?: string; | ||
|  |     extraProviders?: StaticProvider[]; | ||
|  | }): Promise<string>; | ||
|  | 
 | ||
|  | // @public | ||
|  | export function renderModuleFactory<T>(moduleFactory: NgModuleFactory<T>, options: { | ||
|  |     document?: string; | ||
|  |     url?: string; | ||
|  |     extraProviders?: StaticProvider[]; | ||
|  | }): Promise<string>; | ||
|  | 
 | ||
|  | // @public | ||
|  | export class ServerModule { | ||
|  | } | ||
|  | 
 | ||
|  | // @public | ||
|  | export class ServerTransferStateModule { | ||
|  | } | ||
|  | 
 | ||
|  | // @public (undocumented) | ||
|  | export const VERSION: Version; | ||
|  | 
 | ||
|  | 
 | ||
|  | // (No @packageDocumentation comment for this package) | ||
|  | 
 | ||
|  | ``` |