/** * 点赞 */ declare class Like { request: any; sdpAppId: any; constructor(props: any); getResourceLikes: ({ resId, type }: { resId: any; type: any; }) => Promise; postResourceLikes: ({ resId, type }: { resId: any; type?: string | undefined; }) => Promise; } export default Like;