Commit d5447929 authored by Alejandro Celaya's avatar Alejandro Celaya Committed by Alejandro Celaya

Do not explicitly set public visibility in props

parent 345b39c2
......@@ -8,7 +8,7 @@
* specific user) or `'group'` (for a group).
*/
type Permissions = {
export type Permissions = {
/** List of principals that can read the annotation */
read: string[];
/** List of principals that can edit the annotation */
......
......@@ -12,7 +12,7 @@ const supportedThemeProperties: Record<ThemeProperty, string> = {
/**
* Subset of the config from the host page which includes theme configuration.
*/
type Settings = {
export type Settings = {
branding?: Record<ThemeProperty, string>;
};
......
......@@ -7,13 +7,13 @@ type UserDetails = {
};
export class VersionData {
public version: string;
public userAgent: string;
public urls: string;
public fingerprint: string;
public account: string;
public timestamp: string;
public segment: string | undefined;
version: string;
userAgent: string;
urls: string;
fingerprint: string;
account: string;
timestamp: string;
segment: string | undefined;
/**
* @param documentFrames - Metadata for connected frames.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment