File

src/modules/pretty-print/services/pretty-print.service.intf.ts

Description

Service that make the interface between Prettier and Prism

Index

Methods

Methods

format
format(data: string, format: StarkPrettyPrintFormat, highlightingEnabled: boolean)
Parameters :
Name Type Optional
data string No
format StarkPrettyPrintFormat No
highlightingEnabled boolean No
Returns : Observable<string>
import { InjectionToken } from "@angular/core";
import { Observable } from "rxjs";
import { StarkPrettyPrintFormat } from "../types";

/**
 * @ignore
 */
export const starkPrettyPrintServiceName = "starkPrettyPrintService";

/**
 * {@link https://v12.angular.io/api/core/InjectionToken|InjectionToken} used to provide the {@link StarkPrettyPrintService}
 */
export const STARK_PRETTY_PRINT_SERVICE: InjectionToken<StarkPrettyPrintService> = new InjectionToken<StarkPrettyPrintService>(
	starkPrettyPrintServiceName
);

/**
 * Service that make the interface between Prettier and Prism
 */
export interface StarkPrettyPrintService {
	format(data: string, format: StarkPrettyPrintFormat, highlightingEnabled: boolean): Observable<string>;
}

results matching ""

    No results matching ""