@stackend/api
Version:
JS bindings to api.stackend.com
18 lines • 699 B
TypeScript
import { EditForumThreadActions } from './editForumThreadReducer';
import { Thunk } from '../api';
export declare function editForumEntyText({ text }: {
text: string;
}): EditForumThreadActions;
export declare function setForumEntyText({ text }: {
text: string;
}): EditForumThreadActions;
export declare function addForumEntryQuote({ quote }: {
quote: string;
}): EditForumThreadActions;
export declare type ToggleEditForumThread = {
forumPermalink?: string;
editThreadId?: number;
text: string;
};
export declare function toggleEditForumThread({ forumPermalink, editThreadId, text }: ToggleEditForumThread): Thunk<void>;
//# sourceMappingURL=editForumThreadActions.d.ts.map