capacitor-calendario
v0.1.15
Published
Plugin para agregar eventos al calendario del sistema.
Downloads
6
Readme
capacitor-calendario
Plugin para agregar eventos al calendario del sistema.
Install
npm install capacitor-calendario
npx cap sync
API
crearEvento(...)
crearEvento(evento: Evento) => Promise<{ resultado: Resultado; }>
| Param | Type |
| ------------ | ----------------------------------------- |
| evento
| Evento |
Returns: Promise<{ resultado: Resultado; }>
Interfaces
Evento
| Prop | Type |
| ----------------------- | ------------------- |
| eventoID
| string |
| titulo
| string |
| mseInicio
| number |
| mseFin
| number |
| timezone
| string |
| organizadorNombre
| string |
| organizadorEmail
| string |
| lugar
| string |
| direccion
| string |
| descripcion
| string |
| url
| string |
Type Aliases
Resultado
'creado' | 'cancelado' | 'error'