@angular-package/prism
Version:
Simple Angular 5+ Prism highlighter module.
17 lines (16 loc) • 397 B
TypeScript
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;
}