mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
11 lines
308 B
Python
11 lines
308 B
Python
from typing import Any, Optional
|
|
|
|
from django.http.request import HttpRequest
|
|
|
|
class RequestSite:
|
|
name: str
|
|
domain: str = ...
|
|
def __init__(self, request: HttpRequest) -> None: ...
|
|
def save(self, force_insert: bool = ..., force_update: bool = ...) -> Any: ...
|
|
def delete(self) -> Any: ...
|