Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface INgxExpressionsConfig

Hierarchy

  • INgxExpressionsConfig

Implemented by

Index

Properties

Optional 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>

Optional log

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

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

Optional 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.

Optional monacoDefaultOptions

monacoDefaultOptions: any

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

Generated using TypeDoc