mirror of
https://github.com/penpot/penpot.git
synced 2026-03-21 09:53:29 +00:00
6 lines
195 B
TypeScript
6 lines
195 B
TypeScript
import { z } from 'zod';
|
|
import { manifestSchema } from './manifest.schema.js';
|
|
|
|
export type Manifest = z.infer<typeof manifestSchema>;
|
|
export type Permissions = Manifest['permissions'][number];
|