Interface IAuditLogProps

interface IAuditLogProps {
    listName: string;
    onInitError?: ((...args) => void);
    onInitialized?: (() => void);
    webUrl?: string;
}

Properties

listName: string
onInitError?: ((...args) => void)

Type declaration

    • (...args): void
    • Parameters

      • Rest ...args: any[]

      Returns void

onInitialized?: (() => void)

Type declaration

    • (): void
    • Returns void

webUrl?: string