UNPKG

@angular-package/prism

Version:
17 lines (16 loc) 397 B
import { ElementRef } from '@angular/core'; import { CallbackType } from './prism.type'; export interface PrismInterface { async: boolean; callback?: CallbackType; code: string; el: ElementRef; language: string; interpolation?: Object; } export interface OptionsInterface { async?: boolean; callback?: CallbackType; code?: string; interpolation?: Object; }