caccl
Version:
Canvas App Complete Connection Library: an all-in-one library for connecting your app to Canvas, handling lti, access tokens, and api.
18 lines (17 loc) • 469 B
TypeScript
interface CanvasPage {
page_id: number;
url: string;
title: string;
created_at: string;
updated_at?: string | null;
hide_from_students?: boolean | null;
editing_roles?: string | null;
last_edited_by?: any | null;
body?: string | null;
published?: boolean | null;
front_page?: boolean | null;
locked_for_user?: boolean | null;
lock_info?: any | null;
lock_explanation?: string | null;
}
export default CanvasPage;