export declare const ACTOR_SRC_DIR = "src"; export declare const ACTOR_SRC_PRIMARY_NAME = "main"; /** payments stuff. */ export declare const PRODUCTS_JSON_FILE = "products.json"; /** * The hashing algorithm used - pass this to `createHash` */ export declare const ASSET_HASHING_ALGO = "sha256"; /** * The max number of subscribers allowed in a test subreddit (ie where a user can install an uploaded, private app * Determines if a PRIVATE (unpublished) version of an app can be installed or playtested * * TODO: turn this off before we go live - see DX-1336 * */ export declare const MAX_ALLOWED_SUBSCRIBER_COUNT = 200; /** * How many assets to upload at once. Sending too many at once can cause the * server to become overwhelmed and start erroring clients out. * @type {number} */ export declare const ASSET_UPLOAD_BATCH_SIZE = 10; export declare const REDDIT_OAUTH_COPY_PASTE_CLIENT_ID = "TWTsqXa53CexlrYGBWaesQ"; /** All server endpoints must start with this prefix. */ export declare const apiPathPrefix = "/api/"; /** All unexposed APIs must start with this prefix. */ export declare const internalPathPrefix = "/internal/"; /** When an app's icon is present in the media assets list, it'll be with this special name. */ export declare const ICON_FILE_PATH = "$devvit_icon.png"; export declare const REDDIT_DISCORD_INVITE_URL = "https://discord.gg/Cd43ExtEFS"; export declare const REDDIT_SUBREDDIT_URL = "https://www.reddit.com/r/devvit"; //# sourceMappingURL=constants.d.ts.map