edge/doc/apps/client-api/edge-frame.md
William Petit 240b07af66
All checks were successful
arcad/edge/pipeline/head This commit looks good
feat(sdk,client): add edgeframe sdk api
2023-04-06 18:16:17 +02:00

30 lines
382 B
Markdown

# `EdgeFrame`
## Méthodes
### `EdgeFrame.addEventListener(name: string, listener: (event) => void)`
> `TODO`
## Événements
### `"title_changed"`
```typescript
interface TitleChangedEvent {
detail: {
title: string
}
}
```
### `"size_changed"`
```typescript
interface SizeChangedEvent {
detail: {
width: number
height: number
}
}
```