[@portaljs/ckan][sm] - fix types (#1009)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { Activity } from "./activity.interface";
|
||||
import { Dataset, Tag } from "./dataset.interface";
|
||||
import { User } from "./user.interface";
|
||||
import { Activity } from './activity.interface';
|
||||
import { Dataset, Tag } from './dataset.interface';
|
||||
import { User } from './user.interface';
|
||||
|
||||
export interface Group {
|
||||
display_name: string;
|
||||
@@ -10,9 +10,9 @@ export interface Group {
|
||||
created: string;
|
||||
name: string;
|
||||
is_organization: false;
|
||||
state: "active" | "deleted" | "inactive";
|
||||
state: 'active' | 'deleted' | 'inactive';
|
||||
image_url: string;
|
||||
type: "group";
|
||||
type: 'group';
|
||||
title: string;
|
||||
revision_id: string;
|
||||
num_followers: number;
|
||||
|
||||
Reference in New Issue
Block a user