Options
All
  • Public
  • Public/Protected
  • All
Menu

Class NgxExpressionsConfig

Hierarchy

  • NgxExpressionsConfig

Implements

Index

Constructors

constructor

Properties

configure

configure: (monaco: any) => void | Promise<void>

If you want to add some custom configuration to the monaco environment, this method is called once right after it becomes ready.

Type declaration

    • (monaco: any): void | Promise<void>
    • Parameters

      • monaco: any

      Returns void | Promise<void>

log

log: (message: string, params: any[]) => void = null

To assist debugging you can implement the log which will trigger for verbose logging. Beware - there is a lot. Use this at your discretion.

Type declaration

    • (message: string, params: any[]): void
    • Parameters

      • message: string
      • params: any[]

      Returns void

monacoBaseUrl

monacoBaseUrl: string = ...

The base url for where to find the monaco library. Defaults to use CDN (https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.23.0/) library. However if you prefer you can host this locally.

monacoDefaultOptions

monacoDefaultOptions: any = ...

The default configuration for the monaco editor control. Can be overriden for each control using the options parameter.

Generated using TypeDoc