Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The ink read-only property of the Navigator interface returns an Ink object for the current document, providing access to Ink API functionality.
An Ink object.
async function inkInit() {
const ink = navigator.ink;
let presenter = await ink.requestPresenter({ presentationArea: canvas });
// …
}