## 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)[]>; // @public export const INITIAL_CONFIG: InjectionToken; // @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(module: Type, options: { document?: string; url?: string; extraProviders?: StaticProvider[]; }): Promise; // @public export function renderModuleFactory(moduleFactory: NgModuleFactory, options: { document?: string; url?: string; extraProviders?: StaticProvider[]; }): Promise; // @public export class ServerModule { } // @public export class ServerTransferStateModule { } // @public (undocumented) export const VERSION: Version; // (No @packageDocumentation comment for this package) ```