FrameAddScriptTagOptions interface
Signature
export interface FrameAddScriptTagOptions
Properties
Property
|
Modifiers
|
Type
|
Description
|
Default
|
content
|
`optional`
|
string
|
JavaScript to be injected into the frame.
|
|
id
|
`optional`
|
string
|
Sets the `id` of the script.
|
|
path
|
`optional`
|
string
|
Path to a JavaScript file to be injected into the frame.
**Remarks:**
If `path` is a relative path, it is resolved relative to the current working directory (`process.cwd()` in Node.js).
|
|
type
|
`optional`
|
string
|
Sets the `type` of the script. Use `module` in order to load an ES2015 module.
|
|
url
|
`optional`
|
string
|
URL of the script to be added.
|
|