The Canva Apps SDK, Connect APIs, and MCP are now unified in the Canva Developers SDK. Learn more(opens in a new tab or window).
Canva Developers SDK
The Canva Apps SDK, Connect APIs, and MCP are now unified in the Canva Developers SDK. Learn more(opens in a new tab or window).

features.isSupported

API reference for the features.isSupported method.

Checks if the specified SDK methods are supported in the current context.

Usage

Checking a single feature

import { features } from '@canva/platform';
import { addElementAtPoint } from '@canva/design';
const isSupported = features.isSupported(addElementAtPoint);
TYPESCRIPT

Checking multiple features

import { features } from '@canva/platform';
import { addElementAtPoint, addElementAtCursor } from '@canva/design';
const areSupported = features.isSupported(addElementAtPoint, addElementAtCursor);
TYPESCRIPT

Parameters

featuresFeature[]
Required

The SDK methods to be checked for support.

Returns

boolean